Tables [dbo].[FirstPaymentDateTypeRef]
Properties
PropertyValue
Created10:31:22 AM Tuesday, March 02, 2010
Last Modified11:40:03 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_FirstPaymentDateTypeRef: FirstPaymentDateTypeCodeFirstPaymentDateTypeCodeint4
No
FirstPaymentDateTypeDescnvarchar(50)100
No
FirstPaymentDateTypeNamenvarchar(20)40
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_FirstPaymentDateTypeRef: FirstPaymentDateTypeCodePK_FirstPaymentDateTypeRefFirstPaymentDateTypeCode
Yes
SQL Script
CREATE TABLE [dbo].[FirstPaymentDateTypeRef]
(
[FirstPaymentDateTypeCode] [int] NOT NULL,
[FirstPaymentDateTypeDesc] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[FirstPaymentDateTypeName] [nvarchar] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[FirstPaymentDateTypeRef] ADD CONSTRAINT [PK_FirstPaymentDateTypeRef] PRIMARY KEY CLUSTERED ([FirstPaymentDateTypeCode]) ON [PRIMARY]
GO
Uses